 /* --- GLOBAL STYLES --- */
        :root {
            --primary-blue: #0056b3;
            --secondary-blue: #0d6efd;
            --light-bg: #f4f7f6;
            --dark-text: #333;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            background-color: #f8f9fa;
            padding-top: 76px; /* Offset for fixed navbar */
        }

        /* --- NAVBAR --- */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.95);
        }
        .nav-link { font-weight: 500; color: #333; margin: 0 10px; }
        .nav-link:hover { color: var(--primary-blue); }
        
        .btn-back {
            background-color: var(--light-blue);
            color: var(--primary-blue);
            font-weight: 600;
            border-radius: 30px;
            padding: 8px 25px;
            transition: 0.3s;
        }
        .btn-back:hover {
            background-color: var(--primary-blue);
            color: white;
        }

        /* --- PAGE HEADER --- */
        .page-header {
            padding: 80px 0 60px 0;
            text-align: center;
            background: linear-gradient(rgba(0,86,179,0.9), rgba(0,86,179,0.7)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?q=80&w=1920&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            color: white;
            margin-bottom: 50px;
        }

        /* --- CELEBRATION CARDS --- */
        .celebration-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #eef2f6;
        }
        .celebration-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-blue);
        }
        
        .celebration-img-wrap {
            width: 100%;
            height: 240px;
            overflow: hidden;
        }
        .celebration-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .celebration-card:hover .celebration-img-wrap img {
            transform: scale(1.1); /* Zoom effect on hover */
        }

        .celebration-content {
            padding: 25px;
        }
        .event-date {
            color: var(--secondary-blue);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .celebration-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 10px;
        }
        .celebration-desc {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* --- FOOTER --- */
        footer { background: #111; padding: 60px 0 20px; color: #aaa; margin-top: 80px; }
        footer h5 { color: white; font-weight: 700; margin-bottom: 25px; }
        footer a { color: #aaa; text-decoration: none; transition: 0.3s; }
        footer a:hover { color: white; padding-left: 5px; }